home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / text / edit / vim60src.lha / Vim / vim60 / src / proto / ex_getln.pro < prev    next >
Encoding:
Text File  |  2001-09-26  |  2.1 KB  |  41 lines

  1. /* ex_getln.c */
  2. char_u *getcmdline __ARGS((int firstc, long count, int indent));
  3. char_u *getcmdline_prompt __ARGS((int firstc, char_u *prompt, int attr));
  4. char_u *getexline __ARGS((int c, void *dummy, int indent));
  5. char_u *getexmodeline __ARGS((int c, void *dummy, int indent));
  6. int cmdline_overstrike __ARGS((void));
  7. int cmdline_at_end __ARGS((void));
  8. void putcmdline __ARGS((int c, int shift));
  9. void unputcmdline __ARGS((void));
  10. int put_on_cmdline __ARGS((char_u *str, int len, int redraw));
  11. void redrawcmdline __ARGS((void));
  12. void redrawcmd __ARGS((void));
  13. void compute_cmdrow __ARGS((void));
  14. void gotocmdline __ARGS((int clr));
  15. char_u *ExpandOne __ARGS((expand_T *xp, char_u *str, char_u *orig, int options, int mode));
  16. void ExpandEscape __ARGS((expand_T *xp, char_u *str, int numfiles, char_u **files, int options));
  17. void tilde_replace __ARGS((char_u *orig_pat, int num_files, char_u **files));
  18. char_u *addstar __ARGS((char_u *fname, int len, int context));
  19. void set_cmd_context __ARGS((expand_T *xp, char_u *str, int len, int col));
  20. int expand_cmdline __ARGS((expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches));
  21. int ExpandGeneric __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file, char_u *((*func)(expand_T *, int))));
  22. char_u *globpath __ARGS((char_u *path, char_u *file));
  23. int get_histtype __ARGS((char_u *name));
  24. void add_to_history __ARGS((int histype, char_u *new_entry, int in_map));
  25. int get_history_idx __ARGS((int histype));
  26. char_u *get_history_entry __ARGS((int histype, int idx));
  27. int clr_history __ARGS((int histype));
  28. int del_history_entry __ARGS((int histype, char_u *str));
  29. int del_history_idx __ARGS((int histype, int idx));
  30. void remove_key_from_history __ARGS((void));
  31. int get_list_range __ARGS((char_u **str, int *num1, int *num2));
  32. void ex_history __ARGS((exarg_T *eap));
  33. void prepare_viminfo_history __ARGS((int asklen));
  34. int read_viminfo_history __ARGS((vir_T *virp));
  35. void finish_viminfo_history __ARGS((void));
  36. void write_viminfo_history __ARGS((FILE *fp));
  37. void cmd_pchar __ARGS((int c, int offset));
  38. int cmd_gchar __ARGS((int offset));
  39. char_u *script_get __ARGS((exarg_T *eap, char_u *cmd));
  40. /* vim: set ft=c : */
  41.